home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / alloca.0 < prev    next >
Text File  |  1996-09-02  |  973b  |  28 lines

  1.  
  2. ALLOCA(3)                  UNIX Programmer's Manual                  ALLOCA(3)
  3.  
  4. NNAAMMEE
  5.      aallllooccaa - memory allocator
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttddlliibb..hh>>
  9.  
  10.      _v_o_i_d _*
  11.      aallllooccaa(_s_i_z_e___t _s_i_z_e)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The aallllooccaa() function allocates _s_i_z_e bytes of space in the stack frame of
  15.      the caller.  This temporary space is automatically freed on return.
  16.  
  17. RREETTUURRNN VVAALLUUEESS
  18.      The aallllooccaa() function returns a pointer to the beginning of the allocated
  19.      space.  If the allocation failed, a NULL pointer is returned.
  20.  
  21. SSEEEE AALLSSOO
  22.      brk(2),  pagesize(2) calloc(3),  malloc(3),  realloc(3),
  23.  
  24. BBUUGGSS
  25.      The aallllooccaa() function is machine dependent; its use is discouraged.
  26.  
  27. 4th Berkeley Distribution         May 2, 1991                                1
  28.